home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / obero / oberon_lib.lha / oberon-a / source1.lha / source / Amiga / Keyboard.mod < prev    next >
Text File  |  1994-08-08  |  1KB  |  53 lines

  1. (**************************************************************************
  2.  
  3.      $RCSfile: Keyboard.mod $
  4.   Description: Interface to keyboard.device
  5.  
  6.    Created by: fjc (Frank Copeland)
  7.     $Revision: 3.2 $
  8.       $Author: fjc $
  9.         $Date: 1994/08/08 00:50:54 $
  10.  
  11.   $VER: keyboard.h 36.0 (1.5.90)
  12.   Includes Release 40.15
  13.  
  14.   (C) Copyright 1985-1993 Commodore-Amiga, Inc.
  15.       All Rights Reserved
  16.  
  17.   Oberon-A interface Copyright © 1994, Frank Copeland.
  18.   This file is part of the Oberon-A Interface.
  19.   See Oberon-A.doc for conditions of use and distribution.
  20.  
  21. ***************************************************************************)
  22.  
  23. MODULE Keyboard;
  24.  
  25. (*
  26. ** $C- CaseChk       $I- IndexChk  $L+ LongAdr   $N- NilChk
  27. ** $P- PortableCode  $R- RangeChk  $S- StackChk  $T- TypeChk
  28. ** $V- OvflChk       $Z- ZeroVars
  29. *)
  30.  
  31. IMPORT E := Exec;
  32.  
  33.  
  34. (*
  35. **
  36. **      Keyboard device command definitions
  37. *)
  38.  
  39. CONST
  40.  
  41.   readEvent        * = E.cmdNonstd+0;
  42.   readMatrix       * = E.cmdNonstd+1;
  43.   addResetHandler  * = E.cmdNonstd+2;
  44.   remResetHandler  * = E.cmdNonstd+3;
  45.   resetHandlerDone * = E.cmdNonstd+4;
  46.  
  47.  
  48. CONST
  49.  
  50.   name * = "keyboard.device";
  51.  
  52. END Keyboard.
  53.